home *** CD-ROM | disk | FTP | other *** search
/ Magnum One / Magnum One (Mid-American Digital) (Disc Manufacturing).iso / d1 / batchlrn.arc / VAR.HLP < prev    next >
Text File  |  1991-06-17  |  1KB  |  24 lines

  1.                 #
  2. |---------------B A T C H L R N  H E L P  S Y S T E M-----------------|
  3. |command:%<name>% (within a batch processing file)                    |
  4. |                                          |
  5. |use:A way of passing specific data to a batch processing file.       |
  6. |                                                                     |
  7. |how:Type: %<name>% to set the variable.                              |
  8. |                                                                     |
  9. |NOTES:Variables provide another way of passing specific data to a    |
  10. | batch processing file. Please make THIS distinction, there IS an    |
  11. | important difference between variables and parameters. PARAMETERS   |
  12. | are constantly changing.A variable,once declared,RETAINS its value  |
  13. | until either you reset it or turn the PC off. Using the variable    |
  14. | you can not only pass values to the system but to other .BAT files. |
  15. | A variable is a text string(a name)enclosed by % signs (%variable%) |
  16. | Values are given to variables with the DOS SET command. For example,|
  17. | if a batch file contains the statement: LINK %FILE% you can "set"   |
  18. | %FILE% to ANOTHER name (which DOS will then recognize, having dis-  |
  19. | carded FILE and replacing it with the new name). In the example,and |
  20. | to replace %FILE% you would type: SET FILE = DOFILE (DOFILE now is  |
  21. | the variable).                                 |
  22. |                                      |
  23. |----------------- T  I  M  E  M  A  S  T  E  R  ---------------------|
  24.